home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DATETIME / TIMERS / TSTTMR.DOC < prev    next >
Text File  |  1990-10-22  |  987b  |  32 lines

  1.  
  2.      Files in this archive:
  3.     TstTmr.Doc   - This file
  4.     TstTmr.Pas   - Example of Timers unit use
  5.     Timers .Pas  - Unit containing the timer interupt routines
  6.     Timers .Asm  - File containing the timer interupt assembly language
  7.                routines, Compile with TASM
  8.  
  9.  
  10.     Timers.pas intercepts the IBM PC timer interrupt $1C and allows you
  11. to write Pascal routines which will be executed every 55 ms.  Be careful not
  12. to write any routines which will take over 55ms to execute.
  13.  
  14.  
  15.     NOTE - These routines alter the IBM PC interrupt vectors. Be sure
  16. to call InitTimerInterupt only once and be sure to call ReleaseTimerInterupt
  17. only once at the end of your program.
  18.  
  19.  
  20.     This program is released to public domain by the author on 10/20/90.
  21. No responsibility can be accepted for any damage done by this program.    Please
  22. use at your own risk.
  23.  
  24.  
  25.     If you find any bugs in the routines, please drop me a note by
  26. Compuserve EMAIL.  Thanks.
  27.  
  28.  
  29.                    Rich Mullen    76566,1325
  30.  
  31.  
  32.